compress/flate.dictDecoder.wrPos (field)
20 uses
compress/flate (current package)
dict_decoder.go#L31: wrPos int // Current output position in buffer
dict_decoder.go#L50: dd.wrPos = copy(dd.hist, dict)
dict_decoder.go#L51: if dd.wrPos == len(dd.hist) {
dict_decoder.go#L52: dd.wrPos = 0
dict_decoder.go#L55: dd.rdPos = dd.wrPos
dict_decoder.go#L63: return dd.wrPos
dict_decoder.go#L68: return dd.wrPos - dd.rdPos
dict_decoder.go#L73: return len(dd.hist) - dd.wrPos
dict_decoder.go#L80: return dd.hist[dd.wrPos:]
dict_decoder.go#L87: dd.wrPos += cnt
dict_decoder.go#L94: dd.hist[dd.wrPos] = c
dict_decoder.go#L95: dd.wrPos++
dict_decoder.go#L104: dstBase := dd.wrPos
dict_decoder.go#L143: dd.wrPos = dstPos
dict_decoder.go#L154: dstPos := dd.wrPos
dict_decoder.go#L167: dd.wrPos = dstPos
dict_decoder.go#L175: toRead := dd.hist[dd.rdPos:dd.wrPos]
dict_decoder.go#L176: dd.rdPos = dd.wrPos
dict_decoder.go#L177: if dd.wrPos == len(dd.hist) {
dict_decoder.go#L178: dd.wrPos, dd.rdPos = 0, 0
The pages are generated with Golds v0.6.7. (GOOS=linux GOARCH=amd64) Golds is a Go 101 project developed by Tapir Liu. PR and bug reports are welcome and can be submitted to the issue list. Please follow @Go100and1 (reachable from the left QR code) to get the latest news of Golds. |